home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #2 / Monster Media No. 2 (Monster Media)(1994).ISO / clipper / mrddem.zip / CRASH.PRG < prev    next >
Text File  |  1994-06-29  |  628b  |  23 lines

  1. FUNCTION Crash()
  2.    LOCAL nI := 42
  3.    LOCAL cString := "The Answer is :"
  4.  
  5.    @ Maxrow(), 1 SAY "Press RETURN on the error window to view the error object" COLOUR "GR+/BG"
  6.  
  7.    // If the error window is not on top, press Alt and 8 to summon it
  8.  
  9.    // All windows have their own keys to summon them
  10.    // and are listed on the Window menu
  11.  
  12.  
  13.    ? cString + nI
  14.    // string + numeric = argument error
  15.  
  16.    // a crash file was also created, called MrDDemo.MDL
  17.    // To view it change to the command window and type:
  18.    //       VIEW MRDDEMO.MDL
  19.    // or type: VIEW *.MDL and then press Shift and F9
  20.  
  21.  
  22. Return(NIL)
  23.